home *** CD-ROM | disk | FTP | other *** search
/ EnigmA Amiga Run 1995 October / EnigmA AMIGA RUN 01 (1995)(G.R. Edizioni)(IT)[!][issue 1995-10][Aminet 7].iso / Aminet / util / dtype / AOM_Raw_dt40_2.lha / AOM_Raw_DT / Source / classbase.i < prev    next >
Text File  |  1995-02-28  |  1KB  |  50 lines

  1.  
  2. ******************************************************************************
  3. *
  4. * Flowerpower's AOM_Raw Datatype
  5. *
  6. * Written by Christian Buchner and David N. Junod
  7. *
  8. ******************************************************************************
  9. * classbase.i
  10. *
  11. *
  12.  
  13.     IFND CLASSBASE_I
  14. CLASSBASE_I SET    1
  15.  
  16. ;-----------------------------------------------------------------------
  17.  
  18.     INCLUDE "exec/types.i"
  19.     INCLUDE "exec/libraries.i"
  20.     INCLUDE "exec/lists.i"
  21.     INCLUDE "exec/semaphores.i"
  22.     INCLUDE    "utility/tagitem.i"
  23.  
  24. ;-----------------------------------------------------------------------
  25.  
  26.    STRUCTURE ClassBase,LIB_SIZE
  27.     UWORD    cb_UsageCnt
  28.     ULONG    cb_SysBase
  29.     ULONG    cb_DOSBase
  30.     ULONG    cb_IntuitionBase
  31.     ULONG    cb_GfxBase
  32.     ULONG    cb_UtilityBase
  33.     ULONG    cb_IFFParseBase
  34.     ULONG    cb_FileTypesBase
  35.     ULONG    cb_SuperClassBase
  36.     ULONG    cb_SegList
  37.     STRUCT    cb_Lock,SS_SIZE
  38.     ULONG    cb_Class
  39.    LABEL ClassBase_SIZEOF
  40.  
  41. ;-----------------------------------------------------------------------
  42.  
  43.     LIBINIT
  44.  
  45.     LIBDEF    _LVODispatch
  46.  
  47. ;---------------------------------------------------------------------------
  48.  
  49.     ENDC    ; CLASSBASE_I
  50.